LanguageExt.Core

LanguageExt.Core Prelude Value parsing

Contents

class Prelude Source #

Methods

method Option<T> convert <T> (object? value) Source #

method Option<long> parseLong (string value) Source #

method Option<int> parseInt (string value) Source #

method Option<int> parseInt (string value, int fromBase) Source #

method Option<short> parseShort (string value) Source #

method Option<char> parseChar (string value) Source #

method Option<sbyte> parseSByte (string value) Source #

method Option<byte> parseByte (string value) Source #

method Option<ulong> parseULong (string value) Source #

method Option<uint> parseUInt (string value) Source #

method Option<ushort> parseUShort (string value) Source #

method Option<float> parseFloat (string value) Source #

method Option<double> parseDouble (string value) Source #

method Option<decimal> parseDecimal (string value) Source #

method Option<bool> parseBool (string value) Source #

method Option<Guid> parseGuid (string value) Source #

method Option<DateTime> parseDateTime (string value) Source #

method Option<DateTimeOffset> parseDateTimeOffset (string value) Source #

method Option<TimeSpan> parseTimeSpan (string value) Source #

method Option<TEnum> parseEnum <TEnum> (string value) Source #

where TEnum : struct

method Option<TEnum> parseEnumIgnoreCase <TEnum> (string value) Source #

where TEnum : struct

method Option<IPAddress> parseIPAddress (string value) Source #